home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / hewitt.swf / scripts / DefineSprite_4325 / frame_1 / DoAction.as
Encoding:
Text File  |  2011-06-09  |  237 b   |  16 lines

  1. stop();
  2. t = 0;
  3. frameCount = 0;
  4. frame = 0;
  5. onEnterFrame = function()
  6. {
  7.    t++;
  8.    if(t == 2)
  9.    {
  10.       frameCount += _root.moviespeed;
  11.       frame = Math.round(frameCount);
  12.       t = 0;
  13.    }
  14.    this.gotoAndStop(frame);
  15. };
  16.